type strings.trieNode
13 uses
strings (current package)
replace.go#L123: type trieNode struct {
replace.go#L146: next *trieNode
replace.go#L155: table []*trieNode
replace.go#L158: func (t *trieNode) add(key, val string, priority int, r *genericReplacer) {
replace.go#L181: var prefixNode *trieNode
replace.go#L185: prefixNode = &trieNode{
replace.go#L190: keyNode := new(trieNode)
replace.go#L191: t.table = make([]*trieNode, r.tableSize)
replace.go#L199: next := &trieNode{
replace.go#L211: t.table[m] = new(trieNode)
replace.go#L216: t.next = new(trieNode)
replace.go#L260: root trieNode
replace.go#L292: r.root.table = make([]*trieNode, r.tableSize)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |